home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 25 / AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso / Updates / PowerPC / Nostalgia / Install_English next >
Text File  |  2000-05-16  |  1KB  |  43 lines

  1. ; Nostalgia! 0.9ß installation utility
  2. ;
  3. ;
  4. ; Written by -Hybrid- from MELINA SOFTWORKS
  5. ;
  6.  
  7. ;==================================================================
  8. ;VARIABLES
  9. ;==================================================================
  10. (SET #bienvenue  "Welcome in the installation tool for Nostalgia!")
  11.  
  12. (SET #askinstall "Please select a destination for Nostalgia!\n A directory will be created")
  13. (SET #aide       "Please select a destination,a directory called Nostalgia will be created (around 300Kb)")
  14. (SET #merci      "\n\n\n\n\nThank you !")
  15.  
  16. ;==================================================================
  17.  
  18. (if (>= (/ @installer-version 65536) 44)
  19.  (
  20.   (effect "center" "radial" $F0F0F0 $A000E0)
  21.   (showmedia "Nostalgia" "Nostalgia.jpg" "upper_center" "none" 0)
  22.  )
  23. )
  24.  
  25. (welcome #bienvenue)
  26.  
  27. (set #installdir
  28.         (askdir
  29.                 (prompt #askinstall)
  30.                 (help #aide)
  31.                 (default @default-dest)
  32.         )
  33. )
  34.  
  35. (copyfiles
  36.     (source "InstallStuff/")
  37.     (dest #installdir)
  38.     (pattern "#?")
  39. )
  40.  
  41. (EXIT #merci (QUIET))
  42.  
  43.